home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Scorpion King Cardz
/
The Scorpion King Cardz - Disc 4 - Memnon.iso
/
pc
/
assets
/
scorp_postcards_send.dxr
/
00007_removeEndSpaces .ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-03-25
|
274 b
|
14 lines
on removeEndSpaces theString
totalChars = the number of chars in theString
i = totalChars
repeat while i > 0
if char i of theString = " " then
delete char i of theString
else
exit repeat
end if
i = i - 1
end repeat
return theString
end